home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
PROGRAM
/
BOSS_SUP.ARJ
/
WN_GDATE.C
< prev
next >
Wrap
C/C++ Source or Header
|
1991-03-15
|
7KB
|
156 lines
/*
** The Window BOSS's Data Clerk
** Copyright (c) 1988 - Philip A. Mongelluzzo
** All rights reserved.
**
** wn_gdate - get date from window with gross validation
**
** Copyright (c) 1988 - Philip A. Mongelluzzo
** All rights reserved.
**
*/
#include "winboss.h" /* standard stuff */
/*
************
* wn_gdate *
************
*/
/*
** wn_gdate(fun,frm,fld,wn,row,col,prmpt,atrib,fill,month,day,year,ubuff,hlpmsg,errmsg)
**
** int fun - fucntion code (SET || XEQ)
** (WIFORM) frm - form pointer (actual || NFRM)
** int fld - field # in form (actual || NULL)
** (WINDOWPTR) wn - window pointer
** int row - row in window where data input begins
** int col - col in window where data input begins
** (char *) prmpt - field promt (call with NSTR for none)
** unsigned atrib - field (not prompt) atributes
** char fill - field fill character
** (int *) month - pointer to int for month (1-12)
** (int *) day - pointer to int for day (1-31)
** (int *) year - pointer to int for year (0-99)
** (char *) ubuff - pointer to char array of 10 bytes for editing
** (char *)hlpmsg - pointer to help message (call with NSTR for none)
** (char *)errmsg - pointer to err message (call with NSTR) for none)
**
** RETURNS:
**
** MONTH, DAY, and YEAR via pointers.
**
** NULL if error, else the non zero value returned from wn_input.
**
** NOTES:
**
** FUN - fun can only be SET for form setup, or XEQ for immediate
** execution. When called with SET, valid arguements for both
** "frm" and "fld" must be specfied. frm is the field pointer
** returned from frmopn(), and fld is the field sequence number
** in the form for this field. When called with XEQ frm must
** be NFRM and fld must NULL.
**
** UBUFF - Editing buffer. Must be of sufficent size to hold the
** data as it is entered. Typical value is the length
** of the mask + 2 bytes (strlen(mask)+2).
**
** On entry, the first byte of ubuff should be
** a null, otherwise wn_input assumes there is valid
** data there and will enter edit mode. This can be
** handy if there is a need for prefilled but editable
** fields. In actual pratice, wn_input uses this
** buffer for both initial character data entry and
** subsequent editing.
**
** On return, ubuff contains the actual data entered in
** character format with fill and mask characters as
** spaces (e.g. "12 12 88").
**
** Only basic reasonability checks are made. Therefore, dates like
** 02/31/88 can be returned.
**
** Calls wn_input to perform data entry.
**
** Data must satisfy validation checks for function to return.
*/
wn_gdate(fun,frm,fld,wn,row,col,prmpt,atrib,fill,month,day,year,ubuff,hlpmsg,errmsg)
int fun; /* SET or XEQ */
WIFORM frm; /* form pointer or NFRM */
int fld; /* field number or NULL */
WINDOWPTR wn; /* window to use */
int row, col; /* position of input field */
char *prmpt; /* prompt string */
unsigned atrib; /* data entry atribute */
char fill; /* fill char */
int *month, *day, *year; /* ints of month,day,year */
char *ubuff; /* returns "mm/dd/yy" */
char *hlpmsg,*errmsg; /* help and error messages */
{
int m, d, y; /* month day & year */
char mbuf[10]; /* local buffer */
char *p; /* scratch */
unsigned int r; /* sscanf return value */
int rv; /* return value */
int eflg; /* error flag */
if(fun != SET && fun != XEQ) /* saftey check */
return(NULL);
if(fun == SET) { /* set up */
if(frm[fld]->pself != (char *)frm[fld])
wns_ierr("wn_gdate"); /* die if memory is mangled */
frm[fld]->wn = wn; /* set window */
frm[fld]->row = row; /* set row */
frm[fld]->col = col; /* set col */
frm[fld]->prmpt = prmpt; /* set prompt */
frm[fld]->atrib = atrib; /* set attribute */
frm[fld]->fill = fill; /* set fill character */
frm[fld]->fcode = GDATE; /* function code */
frm[fld]->v1.vip = month; /* &month */
frm[fld]->v2.vip = day; /* &day */
frm[fld]->v3.vip = year; /* &year */
frm[fld]->v4.vcp = ubuff; /* &ubuff */
frm[fld]->v5.vcp = hlpmsg; /* &hlpmsg */
frm[fld]->v6.vcp = errmsg; /* &errmsg */
return(TRUE);
}
begin:
if(!(rv=wn_input(wn,row,col,prmpt,"##/##/##",fill,atrib,ubuff,hlpmsg))) {
*ubuff = NUL; /* load ubuff with a bad date */
return(NULL); /* indicate error */
}
if(wni_frmflg) return(TRUE); /* wn_frmget in progress */
if(wns_escape) return(rv); /* escape pressed ?? */
strcpy(mbuf,ubuff); /* load my buffer */
p = mbuf; /* set pointer */
while (*p) { /* set up to pluck */
if(*p == '/') /* the slash */
*p = ' '; /* and stash a space */
p++; /* bump pointer */
} /* continue till done */
r = sscanf(mbuf, "%02d %02d %02d", &m, &d, &y);
if(r == EOF || r == 0) { /* no data - set to zip */
*month = *day = *year = 0; /* set to zip */
return(rv); /* and return */
}
eflg = FALSE;
if(r != 3) eflg = TRUE; /* not enuf data */
if(m < 1 || m > 12) eflg = TRUE; /* bad month */
if(d < 1 || d > 31) eflg = TRUE; /* bad day */
if(y < 0 || y > 99) eflg = TRUE; /* bad year */
if(eflg) {
wn_iemsg(errmsg); /* do error thing */
goto begin; /* and start over */
}
*month = m; /* load user month */
*day = d; /* and day */
*year = y; /* and year */
return(rv); /* all is well.. in gross sense */
}
/* End */